3 函数与作用域

1.函数声明和函数表达式有什么区别?

1.函数声明:function functionName (){}

函数声明(Function Declaration) 可以定义命名的函数变量,而无需给变量赋值。Function Declaration 是一种独立的结构,不能嵌套在非功能模块中。可以将它类比为 Variable Declaration(变量声明)。就像 Variable Declaration 必须以“var”开头一样,Function Declaration 必须以“function”开头。

2.函数表达式: var fn = function (){}

函数表达式(Function Expression)将函数定义为表达式语句(通常是变量赋值)的一部分。通过 函数表达式定义的函数可以是命名的,也可以是匿名的。函数表达式不能以“function”开头

区别:用函数声明定义的函数,函数可以在函数声明之前调用,声明不必放在调用的前面。而用函数表达式定义的函数只能在声明之后调用。【根本原因在于解析器对这两种定义方式读取的顺序不同:解析器会事先读取函数声明,即函数声明放在任意位置都可以被调用;对于函数表达式,解析器只有在读到函数表达式所在那行的时候才解析声明并执行】

2.什么是变量的声明前置?什么是函数的声明前置?

  • 变量声明前置:只是提升声明部分(未赋值状态),赋值部分保持原位置不变。
    实例:
    1
    2
    3
    4
    5
    6
    function say(){
    console.log(name);
    var name='tom';
    console.log(name);
    }
    say();

上面式子可视为

1
2
3
4
5
6
7
function say(){
var name;//变量name声明前置,由于name未赋值,故为undefined
console.log(name);//存在局部name,则无视全局name
name='tom';//变量赋值保持原位,变量name被赋值为'tom'
console.log(name);//输出'tom'
}
say();//输出结果为 undefined tom

  • 函数声明前置:会将函数的声明和定义全都提升至作用域顶部。
    实例:
    1
    2
    3
    4
    5
    6
    7
    8
    9
    var say = function(){
    console.log('1');
    };

    function say(){
    console.log('2');
    };

    say();

上面式子可视为

1
2
3
4
5
6
7
8
9
10
11
var say; //变量声明前置

function say(){
console.log('2');
} //函数声明前置

say = function(){ //变量赋值保持原位执行,say函数被覆盖
console.log('1');
};

say(); //输出'1'

注意:函数的声明优先级高于变量的声明。

3.arguments是什么?

arguments 是一个类数组对象。代表传给一个function的参数列表。

  • arguments length属性
    arguments 是个类数组对象,其包含一个 length 属性,可以用 arguments.length 来获得传入函数的参数个数。

示例:

1
2
3
4
5
6
function func() {
console.log( arguments.length);
}
func();// 0
func(1, 2);// 2
func(1, 2, 3);// 3

  • arguments 转数组

通常使用下面的方法来将 arguments 转换成数组:
Array.prototype.slice.call(arguments);
还有一个更简短的写法:
[].slice.call(arguments);

参考文章

4.函数的”重载”怎样实现?

首先申明,在 JS 中没有重载! 同名函数会覆盖。 但可以在函数体针对不同的参数调用执行相应的逻辑。

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
function printPeopleInfo(name, age, sex){
if(name){
console.log(name);
}

if(age){
console.log(age);
}

if(sex){
console.log(sex);
}
}
printPeopleInfo('Byron', 26);//输出结果byron 26
printPeopleInfo('Byron', 26, 'male');//输出结果byron 26 male

5.立即执行函数表达式是什么?有什么作用?

  • 立即执行函数表达式

    1
    2
    3
    4
    var i = function(){ return 10; }();
    true && function(){ /* code */ }();
    0, function(){ /* code */ }();
    (function(){ /* code */ }());
  • 立即执行函数表达式的作用:
    1.不必为函数命名,避免了污染全局变量;
    2.立即执行函数表达式内部形成了一个单独的作用域,可以封装一些外部无法读取的私有变量,隔离作用域。

6.求n!,用递归来实现

1
2
3
4
5
6
7
8
9
10
11
12
function factor(n){
if (n < 0 ) {
return "wrong";
}
else if (n === 1 || n === 0) {
return 1;
}
else {
return n * factor(n-1);
};

factor(5) //120

7.以下代码输出什么?

1
2
3
4
5
6
7
8
9
10
11
12
function getInfo(name, age, sex){
console.log('name:',name);
console.log('age:', age);
console.log('sex:', sex);
console.log(arguments);
arguments[0] = 'valley';//将vally赋给第一个参数name
console.log('name', name);
}

getInfo('饥人谷', 2, '男');
getInfo('小谷', 3);
getInfo('男');

输出结果

1
2
3
4
5
name: 饥人谷
age: 2
sex: 男
["饥人谷", 2, "男"]
name valley

1
2
3
4
5
name: 小谷
age: 3
sex: undefined
["小谷",3]
name valley
1
2
3
4
5
name: 男
age: undefined
sex: undefined
["男"]
name valley

8.写一个函数,返回参数的平方和

1
2
3
4
5
6
function sumOfSquares(){
}
var result = sumOfSquares(2,3,4)
var result2 = sumOfSquares(1,3)
console.log(result) //29
console.log(result2) //10

如下:

1
2
3
4
5
6
7
8
9
10
11
12
function sumOfSquares(){
var i =arguments.length
var sum=0
for(var n=0;n<i;n++){
sum=sum+arguments[n]*arguments[n]
}
return sum
}
var result = sumOfSquares(2,3,4)
var result2 = sumOfSquares(1,3)
console.log(result)
console.log(result2)

9.如下代码的输出?为什么

1
2
3
   console.log(a);
var a = 1;
console.log(b);

声明前置:

1
2
3
4
var a ;//变量声明前置
console.log(a);//输出undefined
a=1;
console.log(b);//b没有声明,报错 Uncaught ReferenceError: b is not defined

10.如下代码的输出?为什么

1
2
3
4
5
6
7
8
   sayName('world');
sayAge(10);
function sayName(name){
console.log('hello ', name);
}
var sayAge = function(age){
console.log(age);
};
1
2
3
4
5
6
7
8
   function sayName(name){
console.log('hello ', name);
}//函数声明前置
sayName('world');//输出结果为hello world
sayAge(10);//报错 sayAge is not a function
var sayAge = function(age){
console.log(age);
};//函数表达式须放在调用前面,因为函数表达式只有执行到这一行才会去声明

11.如下代码输出什么? 写出作用域链查找过程伪代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
var x = 10
bar()
function foo() {
console.log(x)
}
function bar(){
var x = 30
foo()
}

/* 1.
globalContext = {
AO:{
x:10
foo:function
bar:function
},
Scope:null
}

foo.[[scope]] = globalContext.AO
bar.[[scope]] = globalContext.AO

2.调用bar()
barContext = {
AO:{
x:30
},
Scope:bar.[[scope]] = globalContext.AO
}
x变成30

3.调用foo()
fooContext = {
AO:{},
Scope:foo.[[scope]] = globalContext.AO
}
输出10
*/

12.如下代码输出什么? 写出作用域链查找过程伪代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
var x = 10;
bar()
function bar(){
var x = 30;
function foo(){
console.log(x)
}
foo();
}


/*
1.
globalContext={
AO:{
x:10
bar:function
}
scope: null
}

bar.[[scope]]=globalContext.AO

2.调用函数bar()
barContext={
AO:{
x:30
foo:function
}
scope: bar.[[scope]]=globalContext.AO
}

foo.[[scope]]=barContext.AO

3.调用函数foo()
fooContext={
AO:{}
}
scope: foo.[[scope]]=barContext.AO

输出30
*/

13.如下代码输出什么? 写出作用域链查找过程伪代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
var x = 10;
bar()
function bar(){
var x = 30;
(function (){
console.log(x)
})()
}

/*
1.
globalContext={
AO:{
X:10
bar:function
}
scope: null
}

bar.[[scope]]=globalContext.AO

2.调用bar()
barContext={
AO:{
X:30
function
}
scope: bar.[[scope]]=globalContext.AO
}

function.[[scope]]=barContext.AO

3.调用立即执行函数
fonctionContext={
AO:{}
scope:function.[[scope]]=barContext.AO
}

输出30
*/

14.1以下代码输出什么? 写出作用域链查找过程伪代码

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
var a = 1;

function fn(){
console.log(a)
var a = 5
console.log(a)
a++
var a
fn3()
fn2()
console.log(a)

function fn2(){
console.log(a)
a = 20
}
}

function fn3(){
console.log(a)
a = 200
}

fn()
console.log(a)

/*
1.
globalContext={
AO:{
a:1/200
fn:function
fn3:function
}
scope:none

fn.[[scope]]=globalContext.AO
fn3.[[scope]]=globalContext.AO
}
2.调用函数fn()
fnContext={
AO:{
a:undefined/5/6/20
fn2:function
}
scope: fn.[[scope]]=globalContext.AO
}

fn2.[[scope]]=fnContext.AO

3.调用函数fn3()
fn3Context={
AO:{}
scope:fn3.[[scope]]=globalContext.AO
}

4.调用函数fn2()
fn2Context={
AO:{}
scope:fn2.[[scope]]=fnContext.AO
}


开始执行:
console.log(a)//fn()变量初始值为undefined,所以输出undefined
var a=5//fncontext.AO中的a赋值为5
console.log(a)//输出5
a++//fnContext.AO中的a赋值为加1为6
var a//声明a赋值不变
fn3()//调用fn3()
执行fn3():
console.log(a)//fn3.[[scope]]=globalContext.AO,因为fn3Context.AO中没有a值,所以
去globalContext.AO找,a值为1,所以输出1
a = 200// globalContext.AO中a赋值为200
执行完fn3,跳出fn3,继续执行fn中的fn2()
fn2()//调用执行fn2
console.log(a)//此时fnContext.AO中的a赋值为6,所以输出6
a=20// fnContext.AO中的a赋值为20
跳出fn2,继续执行fn
console.log(a)//此时fnContext.AO中的a赋值为20,输出20
此时fn执行结束,继续执行
console.log(a)//此时globalContext.AO中a赋值为200

综上输出结果:undefined 5 1 6 20 200
*/